home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / ecl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-04-20  |  3.7 KB  |  92 lines

  1. /* 
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is the elliptic curve math library.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Sun Microsystems, Inc.
  19.  * Portions created by the Initial Developer are Copyright (C) 2003
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Douglas Stebila <douglas@stebila.ca>, Sun Microsystems Laboratories
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /* Although this is not an exported header file, code which uses elliptic
  40.  * curve point operations will need to include it. */
  41.  
  42. #ifndef __ecl_h_
  43. #define __ecl_h_
  44.  
  45. #include "ecl-exp.h"
  46. #include "mpi.h"
  47.  
  48. struct ECGroupStr;
  49. typedef struct ECGroupStr ECGroup;
  50.  
  51. /* Construct ECGroup from hexadecimal representations of parameters. */
  52. ECGroup *ECGroup_fromHex(const ECCurveParams * params);
  53.  
  54. /* Construct ECGroup from named parameters. */
  55. ECGroup *ECGroup_fromName(const ECCurveName name);
  56.  
  57. /* Free an allocated ECGroup. */
  58. void ECGroup_free(ECGroup *group);
  59.  
  60. /* Construct ECCurveParams from an ECCurveName */
  61. ECCurveParams *EC_GetNamedCurveParams(const ECCurveName name);
  62.  
  63. /* Duplicates an ECCurveParams */
  64. ECCurveParams *ECCurveParams_dup(const ECCurveParams * params);
  65.  
  66. /* Free an allocated ECCurveParams */
  67. void EC_FreeCurveParams(ECCurveParams * params);
  68.  
  69. /* Elliptic curve scalar-point multiplication. Computes Q(x, y) = k * P(x, 
  70.  * y).  If x, y = NULL, then P is assumed to be the generator (base point) 
  71.  * of the group of points on the elliptic curve. Input and output values
  72.  * are assumed to be NOT field-encoded. */
  73. mp_err ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px,
  74.                    const mp_int *py, mp_int *qx, mp_int *qy);
  75.  
  76. /* Elliptic curve scalar-point multiplication. Computes Q(x, y) = k1 * G + 
  77.  * k2 * P(x, y), where G is the generator (base point) of the group of
  78.  * points on the elliptic curve. Input and output values are assumed to
  79.  * be NOT field-encoded. */
  80. mp_err ECPoints_mul(const ECGroup *group, const mp_int *k1,
  81.                     const mp_int *k2, const mp_int *px, const mp_int *py,
  82.                     mp_int *qx, mp_int *qy);
  83.  
  84. /* Validates an EC public key as described in Section 5.2.2 of X9.62.
  85.  * Returns MP_YES if the public key is valid, MP_NO if the public key
  86.  * is invalid, or an error code if the validation could not be
  87.  * performed. */
  88. mp_err ECPoint_validate(const ECGroup *group, const mp_int *px, const 
  89.                     mp_int *py);
  90.  
  91. #endif                            /* __ecl_h_ */
  92.